home *** CD-ROM | disk | FTP | other *** search
/ Total Web Page (Professional Suite) / Total Web Page 99.iso / Dhtml / image / staticlogo.js < prev    next >
Text File  |  1998-10-30  |  2KB  |  78 lines

  1. //substitute 116 and 42 with the width and height of your logo image, respectively
  2. var staticlogo=new Image(116,42)
  3.  
  4. //change the image path to reflect the path of your logo image
  5. staticlogo.src="nextstep.gif"
  6.  
  7. //Change url below to the target URL of the logo
  8. //EXAMPLE var logolink="http://microsoft.com"
  9. var logolink="../index.htm"
  10.  
  11. //change the alttext variable to reflect the text used for the "alt" attribute of the image tag
  12. var alttext="Total Java Scripts 99"
  13.  
  14.  
  15. ///////////////////////////Do not edit below this line/////////////////////////
  16. function regenerate(){
  17. window.location.reload()
  18. }
  19. function regenerate2(){
  20. if (document.layers)
  21. setTimeout("window.onresize=regenerate",400)
  22. }
  23.  
  24.  
  25. if (document.all)
  26. document.write('<span id="logo" style="position:absolute;top:100;width:'+staticlogo.width+';height:'+staticlogo.height+'"></span>')
  27.  
  28.  
  29.  
  30.  
  31. function createlogo(){
  32. staticimage=new Layer(100)
  33. staticimage.left=-300
  34. staticimage.top=120
  35. staticimage.document.write('<a href="'+logolink+'"><img src="'+staticlogo.src+'" border=0 alt="'+alttext+'"></a>')
  36. staticimage.document.close()
  37. staticimage.visibility="show"
  38. regenerate2()
  39. staticitns()
  40. }
  41.  
  42. if (document.layers)
  43. window.onload=createlogo;
  44.  
  45. if (document.all){
  46. w=document.body.clientWidth-logo.style.pixelWidth-5
  47. h=document.body.clientHeight-logo.style.pixelHeight-5
  48. logo.style.left=w
  49. logo.style.top=h
  50. }
  51.  
  52. function logoit(){
  53. var w2=document.body.scrollLeft+w
  54. var h2=document.body.scrollTop+h
  55. logo.style.left=w2
  56. logo.style.top=h2
  57. }
  58. function logoit2(){
  59. staticimage.left=pageXOffset+window.innerWidth-staticimage.document.width-15
  60. staticimage.top=pageYOffset+window.innerHeight-staticimage.document.height
  61. }
  62.  
  63. function insertimage(){
  64. logo.innerHTML='<a href="'+logolink+'"><img src="'+staticlogo.src+'" border=0 alt="'+alttext+'"></a>'
  65. }
  66.  
  67. if (document.all){
  68. window.onscroll=logoit
  69. window.onresize=new Function("window.location.reload()")
  70. window.onload=insertimage
  71. }
  72.  
  73.  
  74. function staticitns(){
  75. setInterval("logoit2()",90)
  76. }
  77.  
  78.